Print the document¶
Print the following here document.
Sample string :
a string that you “don’t” have to escape
This
is a ……. multi-line
heredoc string ——–> example
print("""
a string that you "don't" have to escape
This
is a ....... multi-line
heredoc string --------> example
""")
Output:
a string that you "don't" have to escape
This
is a ....... multi-line
heredoc string --------> example